home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 January / PCWorld_2007-01_cd.bin / v cisle / autoit / autoit-v3.2.0.1-setup.exe / Examples / Helpfile / _IEFormGetObjByName.au3 < prev    next >
Text File  |  2006-07-14  |  577b  |  12 lines

  1. ; *******************************************************
  2. ; Example 1 - Get a reference to a specific form by name.  In this case, submit a query
  3. ;                to the Google search engine.  Note that the names of the form and form
  4. ;                elements can be found by viewing the page HTML source
  5. ; *******************************************************
  6. ;
  7. #include <IE.au3>
  8. $oIE = _IECreate ("http://www.google.com")
  9. $oForm = _IEFormGetObjByName ($oIE, "f")
  10. $oQuery = _IEFormElementGetObjByName ($oForm, "q")
  11. _IEFormElementSetValue ($oQuery, "AutoIt IE.au3")
  12. _IEFormSubmit ($oForm)